/* =====================================================
   LEADERSHIP SECTION
===================================================== */

.leadership-section {
    width: 100%;
    padding: 0  120px;
    background: #ffffff;
    overflow: hidden;
}


/* =====================================================
   TOP CONTENT
===================================================== */

.leadership-container {
    width: calc(100% - 80px);
    max-width: 1500px;
   
}

.leadership-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 45px;
}


/* SMALL TITLE */

.leadership-small-title {
    margin-bottom: 14px;

    font-size: 18px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    color: #111111;
}


/* MAIN TITLE */

.leadership-title {
    max-width: 500px;

    margin: 0;

    font-size: 45px;
    line-height: 1.18;

    font-weight: 600;

    color: #102b6a;

    text-decoration: none;

    text-decoration-thickness: 2px;

    text-underline-offset: 4px;
}

.leadership-highlight {
    display: inline;

    color: #ff963f;
}


/* DESCRIPTION */

.leadership-description {
    max-width: 800px;
margin-left: 200px;
    padding-top: 27px;
}

.leadership-description p {
    margin: 0;
  font-family: sans-serif;
    font-size: 18px;
    line-height: 1.65;

    color: #111111;
}


/* =====================================================
   SLIDER
===================================================== */

.leadership-slider {
    width: 100%;
}

.leadership-track {
    display: flex;

    align-items: stretch;

    gap: 16px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding-left: 40px;
    padding-right: 40px;

    scroll-snap-type: x proximity;
}

.leadership-track::-webkit-scrollbar {
    display: none;
}


/* =====================================================
   CARD
===================================================== */

.leadership-card {
    flex: 0 0 320px;

    background: #102b6a;

    overflow: hidden;

    scroll-snap-align: start;
}


/* IMAGE */

.leadership-image {
    width: 100%;

    height: 390px;

    overflow: hidden;

    background: #eeeeee;
}

.leadership-image img {
    width: 350px;

    height: 410px;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition: transform 0.5s ease;
}

.leadership-card:hover .leadership-image img {
    transform: scale(1.04);
}


/* =====================================================
   CARD FOOTER
===================================================== */

.leadership-card-footer {
    min-height: 72px;

    padding: 12px 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    background: #102b6a;
}


/* PERSON INFO */

.leadership-person-info {
    min-width: 0;
}

.leadership-person-info h3 {
    margin: 0 0 5px;

    font-size: 20px;
font-family: poppins;
    line-height: 1.2;

    font-weight: 600;

    color: #ffffff;
}

.leadership-person-info p {
    margin: 0;

    font-size: 14px;
font-family: sans-serif;
    line-height: 1.3;

    font-weight: 600;

    text-transform: uppercase;

    color: #ffffff;
}


/* =====================================================
   CARD ARROW
===================================================== */

.leadership-card-arrow {
    width: 31px;

    height: 31px;

    min-width: 31px;

    border: 1px dashed rgba(255, 255, 255, 0.55);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.leadership-card-arrow svg {
    width: 14px;

    height: 14px;

    fill: none;
}

.leadership-card-arrow path {
    stroke: #ffffff;

    stroke-width: 1.5;

    stroke-linecap: round;

    stroke-linejoin: round;
}

a.leadership-card-arrow:hover {
    background: #ff963f;

    border-color: #ff963f;
}


/* =====================================================
   NAVIGATION
===================================================== */

.leadership-navigation {
    width: calc(100% - 80px);

    max-width: 1500px;

    margin: 28px auto 0;

    display: flex;

    align-items: center;

    gap: 10px;
}

.leadership-nav {
    width: 42px;

    height: 42px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #ff963f;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.leadership-nav:hover {
    transform: translateY(-2px);

    background: #102b6a;
}

.leadership-nav svg {
    width: 17px;

    height: 17px;

    fill: none;
}

.leadership-nav path {
    stroke: #102b6a;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}

.leadership-nav:hover path {
    stroke: #ffffff;
}
.leadership-card:has(a.leadership-card-arrow) {
    cursor: pointer;
}

/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1600px) {

    .leadership-card {
        flex-basis: 330px;
    }

    .leadership-image {
        height: 400px;
    }

}


/* =====================================================
   TABLET
===================================================== */
/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .leadership-container {
        width: calc(100% - 48px);
    }

    .leadership-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 35px;
    }

    .leadership-description {
        max-width: 650px;

        margin-left: 0;

        padding-top: 0;
    }

    .leadership-track {
        padding-left: 24px;

        padding-right: 24px;
    }

    .leadership-navigation {
        width: calc(100% - 48px);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .leadership-section {
        padding: 40px 0 45px;
    }


    .leadership-container {
        width: 100%;

        padding: 0 20px;
    }


    .leadership-small-title {
        margin-bottom: 8px;

        font-size: 11px;
        letter-spacing: 1px;
    }


    .leadership-title {
        max-width: 100%;

        font-size: 24px;
        line-height: 1.2;
    }


    .leadership-header {
        margin-bottom: 22px;
    }


    .leadership-description {
        margin-left: 0;
    }


    .leadership-description p {
        font-size: 16px;
        line-height: 1.6;
    }


    /* STACKED, NOT A CAROUSEL */

    .leadership-track {
        display: flex;
        flex-direction: column;

        gap: 14px;

        overflow-x: visible;

        padding-left: 20px;
        padding-right: 20px;

        scroll-snap-type: none;
    }


    .leadership-card {
        flex: none;

        width: 100%;
    }


    .leadership-image {
        width: 100%;
        height: 300px;
    }


    .leadership-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center top;
    }


    .leadership-card-footer {
        min-height: 0;

        padding: 14px 16px;
    }


    .leadership-person-info h3 {
        margin: 0 0 4px;

        font-size: 15px;
    }


    .leadership-person-info p {
        font-size: 10px;
        letter-spacing: 0.3px;
    }


    .leadership-card-arrow {
        width: 26px;
        height: 26px;

        min-width: 26px;
    }


    /* NO ARROWS ON MOBILE */

    .leadership-navigation {
        display: none;
    }

}